github.com/refraction-networking/utls.clientHelloMsg.encryptedClientHello (field)

19 uses

	github.com/refraction-networking/utls (current package)
		ech.go#L389: 	if !bytes.Equal(inner.encryptedClientHello, []byte{uint8(innerECHExt)}) {
		ech.go#L429: 	outer.encryptedClientHello, err = generateOuterECHExt(ech.config.ConfigID, ech.kdfID, ech.aeadID, encapKey, make([]byte, encryptedLen))
		ech.go#L442: 	outer.encryptedClientHello, err = generateOuterECHExt(ech.config.ConfigID, ech.kdfID, ech.aeadID, encapKey, encryptedInner)
		ech.go#L560: 	echType, echCiphersuite, configID, encap, payload, err := parseECHExt(outer.encryptedClientHello)
		handshake_client.go#L230: 		hello.encryptedClientHello = []byte{1} // indicate inner hello
		handshake_client.go#L408: 	echInner := bytes.Equal(hello.encryptedClientHello, []byte{1})
		handshake_messages.go#L100: 	encryptedClientHello    []byte
		handshake_messages.go#L175: 	if len(m.encryptedClientHello) > 0 {
		handshake_messages.go#L178: 			exts.AddBytes(m.encryptedClientHello)
		handshake_messages.go#L697: 			if !extData.ReadBytes(&m.encryptedClientHello, len(extData)) {
		handshake_messages.go#L746: 		encryptedClientHello:             slices.Clone(m.encryptedClientHello),
		handshake_server.go#L152: 	if len(clientHello.encryptedClientHello) != 0 {
		handshake_server_tls13.go#L606: 		if len(clientHello.encryptedClientHello) == 0 {
		handshake_server_tls13.go#L611: 		echType, echCiphersuite, configID, encap, payload, err := parseECHExt(clientHello.encryptedClientHello)
		handshake_server_tls13.go#L804: 	if len(hs.c.config.EncryptedClientHelloKeys) > 0 && len(hs.clientHello.encryptedClientHello) > 0 && hs.echContext == nil {
		u_handshake_client.go#L353: 		hello.encryptedClientHello = []byte{1} // indicate inner hello
		u_public.go#L424: 			encryptedClientHello:    chm.encryptedClientHello,
		u_public.go#L476: 			encryptedClientHello:             chm.encryptedClientHello,